home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / usr / include / linux / xattr.h < prev    next >
C/C++ Source or Header  |  2009-10-16  |  494b  |  18 lines

  1. /*
  2.   File: linux/xattr.h
  3.  
  4.   Extended attributes handling.
  5.  
  6.   Copyright (C) 2001 by Andreas Gruenbacher <a.gruenbacher@computer.org>
  7.   Copyright (c) 2001-2002 Silicon Graphics, Inc.  All Rights Reserved.
  8.   Copyright (c) 2004 Red Hat, Inc., James Morris <jmorris@redhat.com>
  9. */
  10. #ifndef _LINUX_XATTR_H
  11. #define _LINUX_XATTR_H
  12.  
  13. #define XATTR_CREATE    0x1    /* set value, fail if attr already exists */
  14. #define XATTR_REPLACE    0x2    /* set value, fail if attr does not exist */
  15.  
  16.  
  17. #endif    /* _LINUX_XATTR_H */
  18.